home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / jpl_c.zip / EPRINTF.C < prev    next >
Text File  |  1986-05-18  |  1KB  |  33 lines

  1. /* 1.2  01-08-86                         (eprintf.c)
  2.  ************************************************************************
  3.  *            Robert C. Tausworthe                *
  4.  *            Jet Propulsion Laboratory            *
  5.  *            Pasadena, CA 91009        1986        *
  6.  ************************************************************************/
  7.  
  8. #include "defs.h"
  9. #include "stdtyp.h"
  10. #include "stdio.h"
  11.  
  12. /************************************************************************/
  13.  
  14. eprintf(fmt, args)    /* formatted print to stderr of args.        */
  15.  
  16. /*----------------------------------------------------------------------*/
  17. STRING fmt;
  18. unsigned args;
  19. {
  20.     int _eputc();
  21.  
  22.     return format(_eputc, fmt, &args);
  23. }
  24.  
  25. /************************************************************************/
  26.     LOCAL
  27. _eputc(c)        /* print character c on stderr.            */
  28.  
  29. /*----------------------------------------------------------------------*/
  30. {
  31.     return eputc(c);
  32. }
  33.